home *** CD-ROM | disk | FTP | other *** search
/ Family Forum 254 / SOMC Family Forum 254 - Disc 1.iso / FBPRO97 / BAKLEG.BAT < prev    next >
DOS Batch File  |  1996-09-11  |  2KB  |  74 lines

  1. @echo off
  2.  
  3. if %1!==! goto usage
  4. if not exist %1*.lge goto usage
  5.  
  6. if %2!==! goto nodest
  7.  
  8. echo.
  9. echo  Backing up %1 to %2 %3...
  10. echo.
  11.  
  12. if exist %2%3nul copy %1*.* %2%3
  13. if exist %2%3nul goto end
  14.  
  15. if exist %2:%3nul copy %1*.* %2:%3
  16. if exist %2:%3nul goto end
  17.  
  18. if exist %2%3\nul copy %1*.* %2%3
  19. if exist %2%3\nul goto end
  20.  
  21. if exist %2:%3\nul copy %1*.* %2:%3
  22. if exist %2:%3\nul goto end
  23.  
  24. if exist %2\%3nul copy %1*.* %2\%3
  25. if exist %2\%3nul goto end
  26.  
  27. if exist %2:\%3nul copy %1*.* %2:\%3
  28. if exist %2:\%3nul goto end
  29.  
  30. if exist %2\%3\nul copy %1*.* %2\%3
  31. if exist %2\%3\nul goto end
  32.  
  33. if exist %2:\%3\nul copy %1*.* %2:\%3
  34. if exist %2:\%3\nul goto end
  35.  
  36. md %2%3
  37. copy %1*.* %2%3
  38. goto end
  39.  
  40. goto usage
  41.  
  42. :nodest
  43. if not exist backup\nul md backup
  44. copy %1*.* backup
  45. goto end
  46.  
  47. :usage
  48. echo.
  49. echo  BAKLEG will copy the league files for the specified FBPro '97
  50. echo  league(s) to a target drive and/or directory.
  51. echo.
  52. echo  The proper syntax is:
  53. echo.
  54. echo     BAKLEG LEAGUE [drive] [directory]
  55. echo.
  56. echo        LEAGUE is the unique portion of the league's filename. 
  57. echo        [drive] is an optional drive letter.
  58. echo        [directory] is an optional directory name.  
  59. echo.
  60. echo.
  61. echo  Example:  BAKLEG NFL  
  62. echo.
  63. echo    will backup all leagues that have a filename that begins with "NFL". 
  64. echo    Specifying "NFLPI96" would get all leagues that have a filename that
  65. echo    begin with "NFLPI96".
  66. echo.
  67. echo  If you do not specify a drive or directory, your league will be copied
  68. echo  to the BACKUP directory under the installed FBPro '97 game directory.
  69. echo.
  70. echo  Use RESLEG to restore leagues.
  71. echo.
  72. :end
  73. echo.
  74.